home *** CD-ROM | disk | FTP | other *** search
-
- /*
- *
- * MOS105 : マウスカ-ソルの位置の設定
- *
- */
-
- #include <stdio.h>
- #include <dos.h>
-
- unsigned int MOS_set_cursor(signed int horizon,signed int vertical) {
- union REGS inregs, outregs;
- struct SREGS segregs;
-
- segread(&segregs);
- inregs.x.ax=0x0400;
- inregs.x.dx=horizon;
- inregs.x.bx=vertical;
- int86x(0x99,&inregs,&outregs,&segregs);
- return (unsigned int)outregs.h.ah;
- }